home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Developer & Web Development Tools / Inno Setup 5.2.3 / isetup-5.2.3.exe / {app} / Examples / Example2.iss < prev    next >
Text File  |  2006-12-05  |  860b  |  25 lines

  1. ; -- Example2.iss --
  2. ; Same as Example1.iss, but creates its icon in the Programs folder of the
  3. ; Start Menu instead of in a subfolder, and also creates a desktop icon.
  4.  
  5. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
  6.  
  7. [Setup]
  8. AppName=My Program
  9. AppVerName=My Program version 1.5
  10. DefaultDirName={pf}\My Program
  11. ; Since no icons will be created in "{group}", we don't need the wizard
  12. ; to ask for a Start Menu folder name:
  13. DisableProgramGroupPage=yes
  14. UninstallDisplayIcon={app}\MyProg.exe
  15. OutputDir=userdocs:Inno Setup Examples Output
  16.  
  17. [Files]
  18. Source: "MyProg.exe"; DestDir: "{app}"
  19. Source: "MyProg.chm"; DestDir: "{app}"
  20. Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
  21.  
  22. [Icons]
  23. Name: "{commonprograms}\My Program"; Filename: "{app}\MyProg.exe"
  24. Name: "{commondesktop}\My Program"; Filename: "{app}\MyProg.exe"
  25.